home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 41.zip / BS1 part 41 / GFA basic v3.02.adf / PRINTCOLORS.GFA (.txt) < prev    next >
GFA-BASIC Amiga  |  1989-01-23  |  836b  |  23 lines

  1. GFA-AMIGAB
  2. MESSAG
  3. IDCMP
  4. LOCAT
  5. LOCATE
  6. MESSG
  7. How to change the color for the PRINT-command:
  8. PRINT this sequence: chr$(&H9b);"<Style>;<ForeGround>;<BackGround>m"
  9. where: Style= 0  Plain Text
  10.               1  Bold-Face
  11.               3  Italic
  12.               4  Underscore
  13.               7  Inverse Video
  14.        Foreground: 30 - 37
  15.        Background: 40 - 47
  16. Examples:
  17. Bold + Underscore + Color 2 (foregnd) + Color 0 (backgnd)
  18. 1;4;32;40mFF
  19.     Example 1F
  20. Bold + Italic + Color 3 (foregnd) + Color 1 (backgnd)
  21. 1;3;33;41mFF
  22.     Example 2F
  23.